home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr28 / lanscrip.zip / PRINTOUT.BAT < prev    next >
DOS Batch File  |  1993-06-26  |  481b  |  20 lines

  1. @echo off
  2. REM %1 ===> printer SERVER
  3. REM %2 ===> printer POORT
  4. if .%2 == . goto gebruik
  5.  
  6. net/noerror login \\%1 %machine% >nul
  7. net/noerror unuse %2: \\%1\@printer
  8. net/noerror lpt timeout 10 >nul
  9. net show |find "Printer"
  10. goto einde
  11.  
  12. :gebruik
  13.  
  14. @echo ╔═════════════════════════════════════════╗
  15. @echo ║ PRINTOUT [NAAM PRINTER SERVER] [POORT]  ║
  16. @echo ╚═════════════════════════════════════════╝
  17. @echo          vb printout xyves lpt2
  18. net show |find "Printer"
  19.  
  20. :einde